home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000014_news@newsmaster….columbia.edu _Tue Dec 15 12:50:03 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA03339
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 15 Dec 1998 12:50:03 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA15238
  7.     for kermit.misc@watsun; Tue, 15 Dec 1998 12:50:02 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: ckepage/TAP limit
  12. Date: 15 Dec 1998 17:45:17 GMT
  13. Organization: Columbia University
  14. Lines: 31
  15. Message-ID: <75677d$pi7$1@apakabar.cc.columbia.edu>
  16. References: <75659j$gbu$1@nnrp1.dejanews.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9646
  19.  
  20. In article <75659j$gbu$1@nnrp1.dejanews.com>,
  21.  <davism57766@my-dejanews.com> wrote:
  22. : I'm using C-Kermit 6.1.193 Beta.05 in an AIX environment to send
  23. : alphanumeric pages.  The online docs state that the ckepage.ksc script 
  24. : can be used to send "one-line" messages via the TAP protocol.  Can someone
  25. : tell me how many characters this represents?  I'd think it would be
  26. : eighty, but I've had messages that don't work which were actually less
  27. : than eighty characters.  I haven't nailed down yet how many characters I
  28. : can get away with... after a max number of alpha pages I have to pay for
  29. : each one, so I've been trying to set this up with as few 'trial' pages as
  30. : necessary.  The pager central number I have been using supposedly has a
  31. : limit of 240 chars.
  32. The script does not impose any limitation.  The TAP specification says
  33. "a 'block' is up to 256 characters in length, with up to 250 characters 
  34. of info, plus 3 control characters and a 3-character checksum".  What a
  35. particular paging service can handle is a different matter.
  36.  
  37. : In the meantime, can anyone offer any hints as to what imposes the
  38. : single-line limit for the ckepage.ksc script, and if there is possibly
  39. : a way around it for TAP hookups with a more generous character limit?
  40. Sending multiple lines is a more complicated protocol.  It could,
  41. conceivably, be implemented in C-Kermit, but until now nobody has asked for
  42. it.  If the only reason for wanting it is to be able to send pages up to 250
  43. characters when a single message of that length (or less) doesn't get
  44. through, this is normally fixed by juggling the parameters in the APAGE
  45. portion of the script: flow control, intercharacter spacing, and so on (the
  46. items marked with "(*)" in the APAGE definition).
  47.  
  48. - Frank